home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / title-header.scm < prev    next >
Text File  |  2009-12-15  |  6KB  |  178 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Bump-mapped title script --- create a bump-mapped title image for web pages
  5. ; Copyright (C) 1997 Federico Mena Quintero
  6. ; federico@nuclecu.unam.mx
  7. ; ************************************************************************
  8. ; Changed on Feb 4, 1999 by Piet van Oostrum <piet@cs.uu.nl>
  9. ; For use with GIMP 1.1.
  10. ;
  11. ; The corresponding parameters have been replaced by an SF-FONT parameter.
  12. ; The call to gimp-context-set-background has been given a real layer
  13. ; (although it is not used) otherwise gimp 1.1 crashed.
  14. ; ************************************************************************
  15. ;
  16. ; This program is free software; you can redistribute it and/or modify
  17. ; it under the terms of the GNU General Public License as published by
  18. ; the Free Software Foundation; either version 2 of the License, or
  19. ; (at your option) any later version.
  20. ;
  21. ; This program is distributed in the hope that it will be useful,
  22. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24. ; GNU General Public License for more details.
  25. ;
  26. ; You should have received a copy of the GNU General Public License
  27. ; along with this program; if not, write to the Free Software
  28. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  29.  
  30.  
  31. (define (script-fu-title-header text
  32.                                 size
  33.                                 fontname
  34.                                 gradient-reverse)
  35.   (let* (; Parameters
  36.  
  37.          (padding 8)
  38.          (fade-width 64)
  39.  
  40.          ; Image
  41.  
  42.          (img (car (gimp-image-new 256 256 RGB)))
  43.  
  44.          ; Text layer
  45.  
  46.          (text-layer (car (gimp-text-fontname
  47.                            img
  48.                            -1
  49.                            0
  50.                            0
  51.                            text
  52.                            padding
  53.                            TRUE
  54.                            size
  55.                            PIXELS
  56.                            fontname)))
  57.          (text-width (car (gimp-drawable-width text-layer)))
  58.          (text-height (car (gimp-drawable-height text-layer)))
  59.  
  60.          ; Sizes
  61.  
  62.          (text-layers-offset (/ text-height 2))
  63.  
  64.          (img-width (+ text-layers-offset text-width fade-width))
  65.          (img-height text-height)
  66.  
  67.          ; Additional layers
  68.  
  69.          (bg-layer (car (gimp-layer-new img img-width img-height RGBA-IMAGE
  70.                                         "bg-layer" 100 NORMAL-MODE)))
  71.          (bumpmap-layer (car (gimp-layer-new img
  72.                                              text-width
  73.                                              text-height
  74.                                              RGBA-IMAGE
  75.                                              "bumpmap-layer"
  76.                                              100
  77.                                              NORMAL-MODE)))
  78.          (fore-layer (car (gimp-layer-new img text-width text-height RGBA-IMAGE
  79.                                           "fore-layer" 100 NORMAL-MODE)))
  80.        )
  81.  
  82.     (gimp-context-push)
  83.  
  84.     ; Create image
  85.  
  86.     (gimp-image-undo-disable img)
  87.     (gimp-image-resize img img-width img-height 0 0)
  88.  
  89.     (gimp-image-add-layer img bg-layer -1)
  90.     (gimp-image-add-layer img bumpmap-layer -1)
  91.     (gimp-image-add-layer img fore-layer -1)
  92. ;    (gimp-image-add-layer img text-layer -1)
  93.     (gimp-image-raise-layer img text-layer)
  94.     (gimp-image-raise-layer img text-layer)
  95.     (gimp-image-raise-layer img text-layer)
  96.     (gimp-layer-set-offsets bg-layer 0 0)
  97.     (gimp-layer-set-offsets text-layer text-layers-offset 0)
  98.     (gimp-layer-set-offsets bumpmap-layer text-layers-offset 0)
  99.     (gimp-layer-set-offsets fore-layer text-layers-offset 0)
  100.  
  101.     ; Create bumpmap layer
  102.  
  103.     (gimp-context-set-background '(0 0 0))
  104.     (gimp-edit-fill bumpmap-layer BACKGROUND-FILL)
  105.     (gimp-selection-layer-alpha text-layer)
  106.     (gimp-context-set-background '(255 255 255))
  107.     (gimp-edit-fill bumpmap-layer BACKGROUND-FILL)
  108.     (gimp-selection-none img)
  109.     (plug-in-gauss-rle RUN-NONINTERACTIVE img bumpmap-layer 4.0 TRUE TRUE)
  110.  
  111.     ; Fore layer, bumpmap
  112.  
  113.     (gimp-context-set-background '(255 255 255))
  114.     (gimp-edit-fill fore-layer BACKGROUND-FILL)
  115.     (plug-in-bump-map RUN-NONINTERACTIVE img fore-layer bumpmap-layer 135.0 45.0 4 0 0 0 0 FALSE FALSE 0)
  116.  
  117.     ; Text layer
  118.  
  119.     (gimp-drawable-set-visible text-layer TRUE)
  120.     (gimp-layer-set-lock-alpha text-layer TRUE)
  121.  
  122.     (gimp-edit-blend text-layer CUSTOM-MODE NORMAL-MODE
  123.                      GRADIENT-LINEAR 100 0 REPEAT-NONE gradient-reverse
  124.                      FALSE 0.2 3 TRUE
  125.                      padding padding
  126.                      (- text-width padding 1) (- text-height padding 1))
  127.  
  128.     ; Semicircle at the left
  129.  
  130.     (gimp-context-set-background '(0 0 0))
  131.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  132.  
  133.     (gimp-ellipse-select img 0 0 text-height text-height CHANNEL-OP-REPLACE TRUE FALSE 0)
  134.     (gimp-context-set-background (car (gimp-image-pick-color img text-layer
  135.                                                              text-layers-offset 0
  136.                                                              TRUE FALSE 0)))
  137.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  138.  
  139.     ; Fade-out gradient at the right
  140.  
  141.     (gimp-rect-select img (- img-width fade-width) 0 fade-width text-height
  142.                       CHANNEL-OP-REPLACE FALSE 0)
  143.     (gimp-context-set-foreground (car (gimp-context-get-background)))
  144.     (gimp-context-set-background '(0 0 0))
  145.  
  146.     (gimp-edit-blend bg-layer FG-BG-RGB-MODE NORMAL-MODE
  147.                      GRADIENT-LINEAR 100 0 REPEAT-NONE FALSE
  148.                      FALSE 0.2 3 TRUE
  149.                      (- img-width fade-width) 0 (- img-width 1) 0)
  150.  
  151.     (gimp-selection-none img)
  152.  
  153.     ; Done
  154.  
  155. ;    (gimp-image-flatten img)
  156.     (gimp-image-undo-enable img)
  157.     (gimp-display-new img)
  158.  
  159.     (gimp-context-pop)
  160.   )
  161. )
  162.  
  163. (script-fu-register "script-fu-title-header"
  164.   _"Web Title Header..."
  165.   _"Create a decorative web title header"
  166.   "Federico Mena Quintero"
  167.   "Federico Mena Quintero"
  168.   "June 1997"
  169.   ""
  170.   SF-STRING     _"Text"               "Hello world!"
  171.   SF-ADJUSTMENT _"Font size (pixels)" '(32 2 256 1 10 0 0)
  172.   SF-FONT       _"Font"               "Sans"
  173.   SF-TOGGLE     _"Gradient reverse"   FALSE
  174. )
  175.  
  176. (script-fu-menu-register "script-fu-title-header"
  177.                          "<Image>/File/Create/Logos")
  178.